GLSL: step
#GLSL
step( a, b )
https://registry.khronos.org/OpenGL-Refpages/gl4/html/step.xhtml
a <= b ? 1.0 : 0.0
即ち、
a == b
のとき、
1.0
が返る